On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:
общая лексика
ассоциативный список, список сопоставлений
список пар вида (имя свойства, значение), например в языке VHDL
Смотрите также
общая лексика
ассоциативные (нервные) волокна
медицина
ассоциативные нервные волокна
медицина
сочетательный путь
In computer programming and particularly in Lisp, an association list, often referred to as an alist, is a linked list in which each list element (or node) comprises a key and a value. The association list is said to associate the value with the key. In order to find the value associated with a given key, a sequential search is used: each element of the list is searched in turn, starting at the head, until the key is found. Associative lists provide a simple way of implementing an associative array, but are efficient only when the number of keys is very small.